[USER (data scientist)]: Thanks a bunch! Can you also whip up a plot to show the age distribution? Please generate and display a histogram with a KDE (Kernel Density Estimate) plot for the age distribution in the 'credit_customers' dataset.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd 
import matplotlib.pyplot as plt 
import seaborn as sns 
 
# Load the dataset 
credit_customers = pd.read_csv("credit_customers.csv") 
 
# Distribution plot for age 
plt.figure(figsize=(10, 6)) 

# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE] 
</code1>
# YOUR SOLUTION END

plt.savefig('pred_result/histplot.png')
plt.show() 

---END CODE TEMPLATE---

[YOU (AI assistant)]: Absolutely! Let's use seaborn and matplotlib to create a histogram for the age distribution. Here's the code:
'''
import pandas as pd 
import matplotlib.pyplot as plt 
import seaborn as sns 
 
# Load the dataset 
credit_customers = pd.read_csv("credit_customers.csv") 
 
# Distribution plot for age 
plt.figure(figsize=(10, 6)) 

# YOUR SOLUTION BEGIN:
